aboutsummaryrefslogtreecommitdiff
path: root/src/routes/g/[id].svelte
blob: d036c3623b9b20b80f079a0a47ab6a85060d52f7 (plain)
1
2
3
4
5
6
7
8
9
<script>
  export async function load(ctx) {
    let id = ctx.page.params.id
    return { props: { id }}
  }
</script>

<h1>Tag Index.</h1>
<p>This component lists topics for tag with id: {id}</p>